Passed
Pull Request — develop (#758)
by Kevin Van
08:39 queued 04:54
created

SearchPage.render   A

Complexity

Conditions 1

Size

Total Lines 11
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 11
rs 9.85
c 0
b 0
f 0
cc 1
1
import React, { Component } from "react"
2
3
import Search from "../components/search-container"
4
import SEO from "../components/seo"
5
import Layout from "../layouts/index"
6
7
class SearchPage extends Component {
8
  render() {
9
    return (
10
      <Layout>
11
        <SEO lang="nl-BE" title="Zoeken" description="Zoekpagina KCVV Elewijt" path={this.props.location.pathname} />
12
13
        <div className={`limited-width_wrapper`}>
14
          <h1>Zoeken</h1>
15
16
          <Search />
17
        </div>
18
      </Layout>
19
    )
20
  }
21
}
22
23
export default SearchPage
24